| 1234567891011121314151617181920212223242526272829303132 |
- import { NextRequest, NextResponse } from 'next/server';
- import { ResultDto } from '@/types/response/common';
- import { fetchJson } from '@/lib/utils/server';
- // /api/posts/{id}/prediction, /api/posts/{id}/cheers 등 (백엔드 posts 루트 — forum/posts 와 별개)
- export async function GET(request: NextRequest, { params }: { params: Promise<{ path: string[] }> }) {
- const { path } = await params;
- const endpoint = `/api/posts/${path.join('/')}`;
- const url = new URL(request.url);
- const res: ResultDto = await fetchJson(`${endpoint}${url.search}`, { method: 'GET' });
- return NextResponse.json(res);
- }
- // D3 응원 발신 — POST /api/posts/{postID}/cheers { amount, message? }
- export async function POST(request: NextRequest, { params }: { params: Promise<{ path: string[] }> }) {
- const { path } = await params;
- const endpoint = `/api/posts/${path.join('/')}`;
- const contentType = request.headers.get('content-type') || '';
- const raw = await request.arrayBuffer();
- if (raw.byteLength > 0) {
- const res: ResultDto = await fetchJson(endpoint, {
- method: 'POST',
- body: raw,
- headers: contentType ? { 'Content-Type': contentType } : undefined
- });
- return NextResponse.json(res);
- }
- const res: ResultDto = await fetchJson(endpoint, { method: 'POST' });
- return NextResponse.json(res);
- }
|